std::swap(std::forward_list)
From Cppreference
< cpp | container | forward list
| template< class T, class Allocator >
void swap( forward_list<T,Allocator> &lhs, forward_list<T,Allocator> &rhs); | ||
Swaps the contents of lhs and rhs. Calls lhs.swap(rhs).
Contents |
Parameters
| lhs, rhs | - | containers whose contents to swap |
Return value
(none)
Complexity
| This section is incomplete |
See also
| swaps the contents (public member function) | |